If I write return at the end of the try block, will the finally block still execute?
1887
26-Aug-2014
Sumit Kesarwani
26-Aug-2014Yes even if you write return as the last statement in the try block and no exception occurs, the finally block will execute. The finally block will execute and then the control return.